1/* 2 * This file is part of CoCalc: Copyright © 2023 Sagemath, Inc. 3 * License: MS-RSL – see LICENSE.md for details 4 */ 5/* 6 * This file is part of CoCalc: Copyright © 2023 Sagemath, Inc. 7 * License: MS-RSL – see LICENSE.md for details 8 */ 9 10import withCustomize from "lib/with-customize"; 11import Redeem from "../redeem"; 12export default Redeem; 13 14export async function getServerSideProps(context) { 15 const { id } = context.params; 16 return await withCustomize({ context, props: { id } }); 17} 18 19